home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 13
/
Aminet 13 - August 1996.iso
/
Aminet
/
mus
/
misc
/
TabulaturEd.lha
/
tabulatured
/
Install_TabulaturEd
next >
Wrap
Text File
|
1996-06-06
|
2KB
|
79 lines
; $VER: Install_TabulaturEd.script V1.00 (17.02.96)
; © 1995-96 bei Rolf Schaefer
(set @language "deutsch")
(set MSG_SelectPath "Wählen Sie bitte das Zielverzeichnis für TabulaturEd")
(set MSG_InstallingFont "Installiere jetzt die benötigten Fonts !!")
(set MSG_Installing "Welche Files soll ich installieren ? ")
(set verzeichnis "68020")
; Welche CPU-Version soll installiert werden
(set cpuversion
(askchoice
(prompt "Welche Version möchten Sie installieren?")
(choices "68000 Version" "68020 Version")
(if (< (database "cpu") "68020")
(default 0)
(default 1)
)
(help "Wenn Sie einen Amiga mit einem 68020 Prozessor oder"
"höher haben, können sie diese Version installieren."
"Ansonsten installieren sie die 68000 Version "
)
)
)
((if (= cpuversion 0 ))
(set verzeichnis "68000")
(set verzeichnis "68020")
)
; Frage nach dem Zielverzeichnis und kopiere die Files
(copyfiles
(prompt MSG_Installing)
(help @copyfiles-help)
(source verzeichnis )
(set svcomdir
(askdir
(prompt MSG_SelectPath)
(help @askdir-help)
(newpath)
(default "SYS:TabulaturEd")
)
)
(dest svcomdir)
(all)
(confirm)
)
(complete 70)
(copyfiles
(help @copyfiles-help)
(source "TabulaturEd.guide" )
(dest svcomdir)
)
(copyfiles
(help @copyfiles-help)
(source "TabulaturEd.guide.info" )
(dest svcomdir)
)
(complete 70)
(copyfiles
(prompt MSG_InstallingFont)
(help @copyfiles-help)
(source "Fonts")
(dest "SYS:Fonts")
(all)
(confirm)
)